body
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden
}

.menus
{
	height: 100%;
	width: 100%;
	padding: 20px;
	font-family: 'Sora';
}

.menu,.menus
{
	position: absolute
}

.menu
{
	width: 330px;
	font-family: 'Sora';
	/* font-weight: bsold; */
	background: linear-gradient(180deg, rgba(53, 28, 74, 0.945) 0%, rgba(143, 38, 213, 0.801) 100%);
    background-size: center;
	padding: 12px;
    border-radius: 5px;
	box-shadow: 0px 0px 20px #3e0450d2;
    border: 2px solid #731797e7;
	overflow: hidden
}

.hidden
{
	display: none
}

.menu.align-left
{
	left: 40;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.menu.align-top-left
{
	left: 40;
	top: 40
}

.menu.align-top
{
	left: 50%;
	top: 40;
	-webkit-transform: translate(-50%);
	transform: translate(-50%)
}

.menu.align-top-right
{
	right: 5%;
	top: 5%
}

.menu.align-right
{
	right: 5%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.menu.align-bottom-right
{
	right: 5%;
	bottom: 5%
}

.menu.align-bottom
{
	left: 50%;
	bottom: 5%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%)
}

.menu.align-bottom-left
{
	bottom: 5%
}

.menu.align-center
{
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%)
}

.menu .head
{
	font-weight: 700;
	position: relative;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase
}

/* .menu .head-line
{
	position: absolute;
	top: 50%;
	display: block;
	content: "";
	width: 50%;
	height: 1px;
	background-color: #97171bd2;
	-webkit-animation: head-line .6s linear;
	animation: head-line .6s linear
} */

.head-line-last
{
	margin-left: 50%
}

@-webkit-keyframes head-line
{
	0%
	{
		background-color: #1d1d1d
	}

	to
	{
		background-color: #dddddd
	}
}

@keyframes head-line
{
	0%
	{
		background-color: #1a1a1aad
	}

	to
	{
		background-color: #dddddd
	}
}

.menu .head p
{
	position: relative;
	z-index: 2;
	display: inline-block;
	padding-left: 1em;
	padding-right: 1em;
	color: rgb(153, 0, 255);
	vertical-align: middle;
	letter-spacing: 5px;
	/* background-color: #27272734 */
}

.menu-status
{
	height: 24%;
	max-width: 10px;
	min-width: 10px;
	border-radius: 15px;
	background: rgba(20, 20, 20, 0.363);
	float: left;
	margin: 0px;
	overflow: hidden
}

.menu-status-inner
{
	width: 100%;
	background: #eeeeee;
	position: relative;
	height: 0
}
.menu .menu-items
{
	max-height: 400px
}

.menu .menu-items .menu-item
{
	display: flex;
    align-items: center;
    color: #fff;
	text-shadow: 0px 0px 10px white;
	height: 40px;
	font-size: 15px;
	border-radius: 10px
}

.menu-label
{
	float: left;
	margin-left: 10px;
	white-space: nowrap
}

br
{
	content: "";
	margin: 0em;
	display: block;
	font-size: 24%
}

.menu .menu-items .menu-item.selected.up .menu-status .menu-status-inner
{
	height: 100%;
	-webkit-animation: new-up .01s linear;
	animation: new-up .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu-item.old.up .menu-status .menu-status-inner
{
	height: 100%;
	top: 0;
	-webkit-animation: old-up .01s linear;
	animation: old-up .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu .menu-items .menu-item.selected.down .menu-status .menu-status-inner
{
	height: 100%;
	-webkit-animation: new-down .01s linear;
	animation: new-down .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu-item.old.down .menu-status .menu-status-inner
{
	height: 100%;
	top: 0;
	-webkit-animation: old-down .01s linear;
	animation: old-down .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu-item-anim-appear
{
	-webkit-transform: scale(0);
	transform: scale(0)
}

.menu-item-anim-appear-done
{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .1s;
	transition: -webkit-transform .1s;
	transition: transform .1s;
	transition: transform .1s,-webkit-transform .1s
}

@-webkit-keyframes old-up
{
	0%
	{
		height: 100%
	}

	to
	{
		height: 0%
	}
}

@keyframes old-up
{
	0%
	{
		height: 100%
	}

	to
	{
		height: 0%
	}
}

@-webkit-keyframes new-up
{
	0%
	{
		height: 0%;
		top: 100%
	}

	to
	{
		height: 100%;
		top: 0
	}
}

@keyframes new-up
{
	0%
	{
		height: 0%;
		top: 100%
	}

	to
	{
		height: 100%;
		top: 0
	}
}

@-webkit-keyframes new-down
{
	0%
	{
		height: 0%
	}

	to
	{
		height: 100%
	}
}

@keyframes new-down
{
	0%
	{
		height: 0%
	}

	to
	{
		height: 100%
	}
}

@-webkit-keyframes old-down
{
	0%
	{
		height: 100%;
		top: 0
	}

	to
	{
		height: 0%;
		top: 100%
	}
}

@keyframes old-down
{
	0%
	{
		height: 100%;
		top: 0
	}

	to
	{
		height: 0%;
		top: 100%
	}
}


/*# sourceMappingURL=main.7de9eb10.chunk.css.map */